Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix TypeScript latest breakage in CI #6503

Merged
merged 3 commits into from
Jul 5, 2021

Conversation

cartant
Copy link
Collaborator

@cartant cartant commented Jul 5, 2021

Description:

CI seems to be failing with the latest TypeScript and Node types. This PR should fix the failures.

Related issue (if exists): Nope

global.gc seems to be possibly undefined in the latest Node types
@@ -262,7 +262,7 @@ describe('Subscriber', () => {
const subscription = of(42).subscribe(observer);

observer = undefined;
global.gc();
global.gc?.();
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ?. is necessary despite the inclusion of global.gc in the if statement's expression, as the invocation is made within a callback, etc.

@benlesh benlesh merged commit 801a7bb into ReactiveX:master Jul 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants